home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Diamond Collection / The Diamond Collection (Software Vault)(Digital Impact).ISO / cdr34 / archdr20.zip / TOARC.DOP < prev   
Text File  |  1994-12-31  |  361b  |  20 lines

  1. /* Change DirectoryOpus directory from directory on Archives:
  2. ** to original directory. */
  3.  
  4. options results
  5.  
  6. status 13 "-1"
  7. dir=result
  8.  
  9. getnextselected "-1"
  10. file=result
  11. if file~=0 then dir=dir || result
  12.  
  13. dir=strip(dir,'B','"')
  14. i=index(dir,':')
  15. if i~=0 then
  16.   do
  17.     dir="Archives:" || left(dir,i-1) || '/' || substr(dir,i+1)
  18.     ScanDir '"' || dir || '"'
  19.   end
  20.